home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk.zip / INIT.H < prev    next >
C/C++ Source or Header  |  1991-04-07  |  1KB  |  45 lines

  1.  
  2. /********************************************
  3. init.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the Awk programming language as defined in
  8. Aho, Kernighan and Weinberger, The AWK Programming Language,
  9. Addison-Wesley, 1988.
  10.  
  11. See the accompaning file, LIMITATIONS, for restrictions
  12. regarding modification and redistribution of this
  13. program in source or binary form.
  14. ********************************************/
  15.  
  16. /* $Log:    init.h,v $
  17.  * Revision 2.1  91/04/08  08:23:17  brennan
  18.  * VERSION 0.97
  19.  * 
  20. */
  21.  
  22. /* init.h  */
  23.  
  24.  
  25. #ifndef  INIT_H
  26. #define  INIT_H
  27.  
  28.  
  29. void  PROTO( initialize, (int, char **) ) ;
  30. void  PROTO( code_init, (void) ) ;
  31. void  PROTO( code_cleanup, (void) ) ;
  32. void  PROTO( compile_cleanup, (void) ) ;
  33. void PROTO(scan_init, (int, char *) ) ;
  34. void PROTO(scan_cleanup, (void) ) ;
  35. void PROTO(bi_vars_init, (void) ) ;
  36. void PROTO(bi_funct_init, (void) ) ;
  37. void PROTO(print_init, (void) ) ;
  38. void PROTO(kw_init, (void) ) ;
  39. void PROTO(jmp_stacks_init, (void) ) ;
  40. void PROTO(jmp_stacks_cleanup, (void) ) ;
  41. void  PROTO( field_init, (void) ) ;
  42. void  PROTO( fpe_init, (void) ) ;
  43.  
  44. #endif   /* INIT_H  */
  45.